home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Scope / Scope Disk #078 (199x)(Scope PD)(US)[WB].zip / Scope Disk #078 (199x)(Scope PD)(US)[WB].adf / Start / Part1 < prev    next >
Text File  |  1989-06-29  |  3KB  |  73 lines

  1.  
  2.   The first thing we'll do is go through the stock startup and tidy things
  3. up just a bit.
  4.  
  5.  
  6.   - Delete the "echo A500.." line, like hey, who needs an advertisement?
  7.  
  8.   - BindDrivers is only if you have a hard drive so say bye-bye.
  9.  
  10.   - condense this next bunch of garbage down to
  11.  
  12.                  Path System Utilities (the "add" is unnecessary)
  13.  
  14.     We KNOW the System and Utilities directories are on the disk (unless
  15. you've renamed them, which you're welcome to do) so we don't need all this
  16. IF and EndIF yak.  We also want to call attention to Ram so LoadWB will
  17. load its icon, which is the (only) point of "Dir Ram:" down below, so make
  18. the Path command "Path Ram: System Utilities".  That will call attention
  19. to Ram just fine.  Delete the "Dir Ram:".  Talk about redundant.
  20.  
  21.   - This isn't Sweden so toss that SetMap command on the scrap heap where it
  22. belongs.  You can also now delete all the keymaps in the devs dir.  Way down
  23. the road on some wintery day you can haul out ol' SetMap and try and make it
  24. do something besides goof up your keyboard.  You are more than welcome to
  25. make long extensive tests and see just what the differences are between USA1,
  26. 2,3 and default.
  27.  
  28.   - If you haven't jacked AddBuffers up to 250 yet you've got a BIG surprise
  29. coming.  First, delete all that garbage after the semicolon.  You'll use
  30. AddBuffers until you get FaccII, a much-needed buffers program that has an
  31. OFF switch.  Not being able to turn off AddBuffers, and thus getting the
  32. memory/Ram back, is a prime reason we need Select.  If you've got the meg of
  33. Ram give df0 250 or so and grateful little df1 50, like thus:
  34.  
  35.                       AddBuffers df0: 250 df1: 50
  36.  
  37.   - LoadWb can be RunBack'd -6 and is much smoother, but I'm not sure if the
  38. system is completely happy with it being RunBack'd, so I run it straight up.
  39.  
  40.   - Delete the failat command.  If SetClock needs failat 30, face it, your
  41. computer's broken.  That's assuming you've got the meg of Ram and the
  42. internal clock.  If you don't have the meg, delete the SetClock command too.
  43.  
  44.   - Otherwise, the SetClock command is fine just the way it is.
  45.  
  46.   - Delete Date, like who needs it..it just types out the date.
  47.  
  48.   - The EndCLI is also fine..interesting to note the "> nil:" has a space
  49. between the > and nil:, but doesn't up above in SetClock.  It only shows it
  50. doesn't matter.
  51.  
  52.  
  53.   So the way I see it is:
  54.  
  55.                      Path Ram: System Utilities
  56.                      AddBuffers df0: 250 df1: 50
  57.                      LoadWb
  58.                      SetClock > nil: opt load
  59.                      EndCLI > nil:
  60.  
  61.   Well!  Whittled that puppy right down to size, we did.
  62.  
  63.                                        *
  64.  
  65.   Suggestion:  "Copy c/Execute c/f".  Then "Ed s/g", and in Ed type
  66. "Ed df0:s/startup-sequence" and Save.  Then when you type "f g" just as fast
  67. as your little fingers can go, boom, one startup-sequence, ready to edit.
  68.  
  69.                                        *
  70.  
  71.  
  72.  
  73.